home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / GDI / GDI484.C < prev    next >
C/C++ Source or Header  |  1994-12-19  |  375b  |  18 lines

  1. #define STRICT
  2. #include <windows.h>
  3. #include <sys/rsxw32.h>
  4.  
  5. BOOL WINAPI ScaleViewportExtEx (HDC par1, short par2, short par3, short par4, short par5, SIZE FAR* par6)
  6. {
  7.     STACKWORDS(1+1+1+1+1+2);
  8.  
  9.     PUSH_WORD(par1);
  10.     PUSH_WORD(par2);
  11.     PUSH_WORD(par3);
  12.     PUSH_WORD(par4);
  13.     PUSH_WORD(par5);
  14.     PUSH_LPSTR(par6);
  15.     return WINCALL(484,GDI);
  16. }
  17.  
  18.